INavigator.Items property

Namespace: NextDesign.Desktop

Description

All management elements of this navigator

In the current version, only the following navigators support this property: - Model Navigator - Product Line Navigator

ICollection Items {get;}

type

  • ICollection

Annotation

About API specification change and migration method in Ver.1.1

From Ver.1.1, the type of this property will be changed from IObjectCollection to (C#) ICollection. If you are using this API, you need to change the relevant part in the extension along with the version upgrade to Ver.1.1 or later.

Change it by referring to the following example.

Change before

IObjectCollection items = EditorPage.CurrentNavigator.Items;

After change

System.Collections.ICollection items = EditorPage.CurrentNavigator.Items;